home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / Aztec C 5.0a disk 1.adf / include / exec / nodes.h < prev    next >
C/C++ Source or Header  |  1989-11-05  |  679b  |  35 lines

  1. #ifndef    EXEC_NODES_H
  2. #define    EXEC_NODES_H
  3. #ifndef EXEC_TYPES_H
  4. #include "exec/types.h"
  5. #endif /* !EXEC_TYPES_H */
  6. struct    Node    {
  7. struct    Node    *ln_Succ;
  8. struct    Node    *ln_Pred;
  9. UBYTE    ln_Type;
  10. BYTE    ln_Pri;
  11. char    *ln_Name;
  12. };
  13. struct    MinNode    {
  14. struct    MinNode    *mln_Succ;
  15. struct    MinNode    *mln_Pred;
  16. };
  17. #define    NT_UNKNOWN    0L
  18. #define    NT_TASK    1L
  19. #define    NT_INTERRUPT    2L
  20. #define    NT_DEVICE    3L
  21. #define    NT_MSGPORT    4L
  22. #define    NT_MESSAGE    5L
  23. #define    NT_FREEMSG    6L
  24. #define    NT_REPLYMSG    7L
  25. #define    NT_RESOURCE    8L
  26. #define    NT_LIBRARY    9L
  27. #define    NT_MEMORY    10L
  28. #define    NT_SOFTINT    11L
  29. #define    NT_FONT    12L
  30. #define    NT_PROCESS    13L
  31. #define    NT_SEMAPHORE    14L
  32. #define    NT_SIGNALSEM    15L
  33. #define    NT_BOOTNODE    16L
  34. #endif
  35.